home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
-
- Type Rect
- left As Integer
- top As Integer
- right As Integer
- bottom As Integer
- End Type
-
- Global Const MM_TWIPS = 6
-
- Declare Function GetScreenDC Lib "User" Alias "GetDC" (ByVal hWnd As Integer) As Integer
- Declare Function ReleaseScreenDC Lib "User" Alias "ReleaseDC" (ByVal hWnd As Integer, ByVal hDC As Integer) As Integer
- Declare Sub DrawFocusRect Lib "User" (ByVal hDC As Integer, lpRect As Rect)
-
-